home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib8 / v_10_07 / 1007092a < prev    next >
Encoding:
Text File  |  1995-11-01  |  311 b   |  14 lines

  1.  
  2. void get_message_static(char *string)
  3.         {
  4.         static char *p_static = "Some string";
  5.         strcpy(string, p_static);
  6.         return;
  7.         }
  8. void get_message_auto(char *string)
  9.         {
  10.         char *p_auto = "Some string";
  11.         strcpy(string, p_auto);
  12.         return;
  13.         }
  14.